home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE02 / TPACK / TPACK.ZIP / TPDLL.DPR < prev    next >
Encoding:
Text File  |  1995-05-19  |  211 b   |  19 lines

  1. library tpDLL;
  2.  
  3. uses Forms, About;
  4.  
  5. procedure AboutBox; export;
  6. begin
  7.   With TAboutBox.Create(Application) do try
  8.     Execute
  9.   finally
  10.     free;
  11.     end;
  12. end;
  13.  
  14. exports
  15.   AboutBox;
  16.  
  17. begin
  18. end.
  19.